compress/flate.compressor.index (field)

29 uses

	compress/flate (current package)
		deflate.go#L103: 	index         int
		deflate.go#L125: 	if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
		deflate.go#L128: 		d.index -= windowSize
		deflate.go#L186: 	if d.index != 0 || d.windowEnd != 0 {
		deflate.go#L226: 	d.index = n
		deflate.go#L376: 	d.index = 0
		deflate.go#L382: 	if d.windowEnd-d.index < minMatchLength+maxMatchLength && !d.sync {
		deflate.go#L390: 		if d.index > d.windowEnd {
		deflate.go#L393: 		lookahead := d.windowEnd - d.index
		deflate.go#L398: 			if d.index > d.windowEnd {
		deflate.go#L405: 					d.tokens = append(d.tokens, literalToken(uint32(d.window[d.index-1])))
		deflate.go#L409: 					if d.err = d.writeBlock(d.tokens, d.index); d.err != nil {
		deflate.go#L417: 		if d.index < d.maxInsertIndex {
		deflate.go#L419: 			hash := hash4(d.window[d.index : d.index+minMatchLength])
		deflate.go#L422: 			d.hashPrev[d.index&windowMask] = uint32(d.chainHead)
		deflate.go#L423: 			*hh = uint32(d.index + d.hashOffset)
		deflate.go#L429: 		minIndex := d.index - windowSize
		deflate.go#L437: 			if newLength, newOffset, ok := d.findMatch(d.index, d.chainHead-d.hashOffset, minMatchLength-1, lookahead); ok {
		deflate.go#L458: 					newIndex = d.index + d.length
		deflate.go#L460: 					newIndex = d.index + prevLength - 1
		deflate.go#L462: 				index := d.index
		deflate.go#L474: 				d.index = index
		deflate.go#L483: 				d.index += d.length
		deflate.go#L487: 				if d.err = d.writeBlock(d.tokens, d.index); d.err != nil {
		deflate.go#L494: 				i := d.index - 1
		deflate.go#L496: 					i = d.index
		deflate.go#L506: 			d.index++
		deflate.go#L622: 		d.index, d.windowEnd = 0, 0